...
Copy connected value between palettes
Implemented functions:
Funkcia zakáže/povolí prístup na grafický objekt| function disables/enables access to the graphical object. | %HI_SetEnable |
| Visible |
Funkcia skryje/zobrazí grafický objektFunkcia PosX nastaví súradnicu X danému grafickému objektu| The PosX function sets the X coordinate of the graphical object. | %HI_SetPosX |
| PosY |
Funkcia PosY nastaví súradnicu X danému grafickému objektu| The PosY function sets the Y coordinate of the graphical object. | %HI_SetPosY |
| PosX+ |
Funkcia posunie súradnicu X danému grafickému objektu| function shifts (offsets) the X coordinate of the graphical object. | %HI_SetPosX (%HI_GetPosX+hodnota) |
| PosY+ |
Funkcia PosY+ posunie súradnicu X danému grafickému objektu| The PosY+ function shifts (offsets) the Y coordinate of the graphical object. | %HI_SetPosY(%HI_GetPosY+hodnota) |
| SizeX |
Funkcia SizeX nastaví šírku grafického objektu| The SizeX function sets the width of the graphical object | %HI_SetSizeX |
| SizeY |
Funkcia SizeY nastaví šírku grafického objektu| The SizeY function sets the height of the graphical object | %HI_SetSizeY |
| DistX |
Funkcia DistX nastaví vzdialenosť od jedného bodu objektu k nasledovnému bodu na osi X| The DistX function sets the distance from one point of the object to the next point along the X-axis. | %HI_SetDistX |
| DistY |
Funkcia DistY nastaví vzdialenosť od jedného bodu objektu k nasledovnému bodu na osi Y| The DistY function sets the distance from one point of the object to the next point along the Y-axis. | %HI_SetDistY |
| LineWidth |
Funkcia LineWidth nastaví hrúbku čiaryFunkcia nastaví text grafickému objektu| function sets the text of the graphical object. | %HI_SetText |
| SetLineTerminator |
Funkcia SetLineTerminator nastaví spôsob ukončenia čiary a aj podčiar v viacnásobnej čiare| The SetLineTerminator function sets the line termination style, including the termination of individual lines in a multi-line object. | %HI_SetLineTerminator |
| ForeColor |
Funkcia ForeColor nastaví grafickému objektu farbu popredia| The ForeColor function sets the foreground color of the graphical object. | %HI_SetForeColor |
| BackColor |
Funkcia BackColor nastaví farbu pozadia pre grafický objekt| The BackColor function sets the background color of the graphical object. | %HI_SetBackColor |
| BackColor2 |
Funkcia BackColor2 nastaví druhú gradientovú farbu pre grafický objekt| The BackColor2 function sets the secondary gradient color of the graphical object. | %HI_SetBackColor2 |
| TextColor |
Funkcia TextColor nastaví grafickému objektu farbu textu| The TextColor function sets the text color of the graphical object. | %HI_SetTextColor |
Príklad:
Here is an example of a simple clock in a scheme with its center at **[100,100]**, implemented **without using a script**—the highlighted point moves simultaneously with the second hand.
...