DELIMITER Block

Choose a tool for developing with an AI agent:

  • use Alaio Vibecode to build an app for Bitrix24 from a task description without knowing any programming language. The agent writes the code and deploys the app to a server, with no manual hosting setup
  • use the MCP server to develop a REST API integration in your own project. The agent refers to the official REST documentation

The DELIMITER block adds a visual separator between parts of an attachment.

Delimiter Block

Block Parameters

Name
type

Description

SIZE
integer

Width of the separator in pixels. If the value is not specified or is incorrect, 200 is used

COLOR
string

HEX color of the separator (#RGB or #RRGGBB)

Example

How to Use Examples in Documentation

{
            DELIMITER: {
                SIZE: 200,
                COLOR: '#c6c6c6'
            }
        }
        
attach = {
            "DELIMITER": {
                "SIZE": 200,
                "COLOR": "#c6c6c6",
            },
        }
        
[
            'DELIMITER' => [
                'SIZE' => 200,
                'COLOR' => '#c6c6c6'
            ]
        ]
        

Continue Learning