Skip to Content
参考类型

SelectionMode

GitHub上的源代码 

SelectionMode 枚举提供了两种节点选择行为的选项:

🌐 The SelectionMode enum provides two options for node selection behavior:

  • Full:仅当选择矩形完全包含节点时,才会选中该节点。
  • Partial:当选择矩形与节点部分重叠时,才会选中该节点。
enum SelectionMode { Partial = 'partial', Full = 'full', }
Last updated on