AnyCAD Rapid API 2025
Help you to create a better world!
|
<> 基于鼠标、键盘、Touch等方式输入进行交互编辑的基类.
void Editor.Abort | ( | ViewContext | ctx | ) |
显式放弃修改
ctx | 上下文 |
void Editor.AfterRendering | ( | ViewContext | ctx | ) |
渲染后调用
ctx | 上下文 |
boolean Editor.Apply | ( | ViewContext | ctx | ) |
应用当前数据。调用Commit提交,并且调用Reset重新下一次的操作。
ctx | 上下文 |
被 DistanceMeasureEditor , 以及 NodeFrameEidtor 重载.
void Editor.BeforeRendering | ( | ViewContext | ctx | ) |
boolean Editor.Commit | ( | ViewContext | ctx | ) |
提交修改
ctx | 上下文 |
void Editor.Finish | ( | ViewContext | ctx | ) |
int Editor.GetEditStep | ( | ) |
获取编辑步骤。步骤不等于Editor的Index
void Editor.NotifyParamsChanged | ( | ViewContext | ctx | ) |
通知参数发生变化
ctx | 上下文 |
void Editor.NotifyParamsChanged | ( | ViewContext | ctx, |
String | propertyName ) |
通知参数发生变化
ctx | 上下文 |
propertyName | 变化的属性,可为空。 |
EnumEditorCode Editor.OnAction | ( | ViewContext | ctx, |
String | name, | ||
ParameterDict | parameters ) |
执行动作
ctx | 上下文 |
name | 名称 |
parameters | 参数 |
EnumEditorCode Editor.OnBeginMultiTouch | ( | ViewContext | ctx, |
MultiTouchEvent | evt ) |
开始多点触摸
ctx | 上下文 |
evt | 事件 |
EnumEditorCode Editor.OnContextMenu | ( | ViewContext | ctx, |
InputEvent | evt ) |
自定义右键菜单
ctx | 上下文 |
evt | 事件 |
void Editor.OnDocumentChanged | ( | ViewContext | ctx, |
DocumentEventArgs | args ) |
EnumEditorCode Editor.OnEndMultiTouch | ( | ViewContext | ctx, |
MultiTouchEvent | evt ) |
结束多点触摸
ctx | 上下文 |
evt | 事件 |
EnumEditorCode Editor.OnInput | ( | ViewContext | ctx, |
ParameterDict | input ) |
EnumEditorCode Editor.OnKeyDown | ( | ViewContext | ctx, |
InputEvent | evt ) |
键盘按下
ctx | 上下文 |
evt | 事件 |
EnumEditorCode Editor.OnKeyUp | ( | ViewContext | ctx, |
InputEvent | evt ) |
EnumEditorCode Editor.OnMouseDown | ( | ViewContext | ctx, |
InputEvent | evt ) |
EnumEditorCode Editor.OnMouseMove | ( | ViewContext | ctx, |
InputEvent | evt ) |
EnumEditorCode Editor.OnMouseUp | ( | ViewContext | ctx, |
InputEvent | evt ) |
EnumEditorCode Editor.OnMouseWheel | ( | ViewContext | ctx, |
InputEvent | evt, | ||
int | delta ) |
鼠标中键滚动
ctx | 上下文 |
evt | 事件 |
delta | 变化量 |
EnumEditorCode Editor.OnMultiTouch | ( | ViewContext | ctx, |
MultiTouchEvent | evt ) |
多点触摸
ctx | 上下文 |
evt | 事件 |
EnumEditorCode Editor.OnSelectionChanged | ( | ViewContext | ctx | ) |
boolean Editor.Preview | ( | ViewContext | ctx | ) |
void Editor.Reset | ( | ViewContext | ctx | ) |
重置,一般会重新创建对象
ctx | 上下文 |
void Editor.SetEditStep | ( | int | step | ) |
设置编辑步骤。
step | 步骤。一般定义为Enum |
void Editor.SetName | ( | String | name | ) |
设置名称
void Editor.ShowTooltip | ( | String | content | ) |
通知显示提示信息
content | 内容 |
boolean Editor.SnapFilter | ( | ViewContext | ctx, |
PickedItem | item ) |
设置snap的过滤条件
ctx | 上下文 |
item | 选择对象 |
EnumEditorCode Editor.Start | ( | ViewContext | ctx | ) |