* 获取指定 path 的属性模型实例 * @param path 属性路径,支持 a / a.b / a.0 等格式 * @returns
(path: string, createIfNone = true)
| 450 | * @returns |
| 451 | */ |
| 452 | getProp(path: string, createIfNone = true): IPublicModelProp | null { |
| 453 | return ShellProp.create(this[nodeSymbol].getProp(path, createIfNone)); |
| 454 | } |
| 455 | |
| 456 | /** |
| 457 | * 获取指定 path 的属性模型实例值 |
no test coverage detected