glendix/editor_config

Types

Mendix PropertyGroup 배열 (Studio Pro가 getProperties에 전달)

pub type Properties

Values

pub fn hide_nested_properties(
  properties: Properties,
  key: String,
  index: Int,
  nested_keys: String,
) -> Properties

여러 중첩 속성을 한 번에 숨긴다 (콤마 구분 String) 예: hide_nested_properties(props, “series”, 0, “key1,key2”)

pub fn hide_nested_property(
  properties: Properties,
  key: String,
  index: Int,
  nested_key: String,
) -> Properties

중첩 속성을 숨긴다 (배열 타입 속성의 특정 인덱스 내부)

pub fn hide_properties(
  properties: Properties,
  keys: String,
) -> Properties

여러 속성을 한 번에 숨긴다 (콤마 구분 String) 예: hide_properties(props, “key1,key2,key3”)

pub fn hide_property(
  properties: Properties,
  key: String,
) -> Properties

단일 속성을 숨긴다

pub fn move_property(
  properties: Properties,
  from_index: Int,
  to_index: Int,
) -> Properties

속성 순서를 변경한다

pub fn transform_groups_into_tabs(
  properties: Properties,
) -> Properties

속성 그룹을 탭으로 변환한다 (웹 플랫폼용)

Search Document