components是啥意思
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了components是啥意思相关的知识,希望对你有一定的参考价值。
components英[kəm'pəʊnənt]
美[kəm'poʊnənt]
n. (机器、设备等的)构成要素,零件,成分;成分( component的名词复...
adj. 组成的,构成的 参考技术A components
组件
双语对照
词典结果:
components
[英][kəm'pəʊnənt][美][kəm'poʊnənt]
n.(机器、设备等的)构成要素,零件,成分; 成分( component的名词复数 ); [物理化学]组分; [数学]分量; (混合物的)组成部分;
adj.组成的,构成的;
以上结果来自金山词霸
例句:
1.
The next phase of reform has two components.
下一阶段的改革由两部分组成。 参考技术B
components
n. (机器、设备等的)构成要素,零件,成分
adj. 组成的,构成的
Component.Replace 的正确语法是啥?
【中文标题】Component.Replace 的正确语法是啥?【英文标题】:What is the correct syntax for Component.Replace?Component.Replace 的正确语法是什么? 【发布时间】:2014-04-19 22:32:03 【问题描述】:有人告诉我这是访问 Inventor 的“替换组件”命令的正确方法:
Component.Replace(OldNamePath, NewNamePath, False)
但我遇到了语法错误。什么是正确的语法?我在 Inventor VBA 库中没有看到它...
OldNamePath 和 NewNamePath 来自创建完整路径名的不同模块。
我得到的错误是“预期 =”错误...
【问题讨论】:
【参考方案1】:“我相信这就是 iLogic 的语法。
根据编程帮助文件有一个可用的 ComponentOccurence.Replace。
它还包含添加新事件和操作现有事件的示例。”
来自 Autodesk Inventor 自定义论坛。
还有... “您是从 iLogic 还是 VBA 宏执行此操作。如果您是从 iLogic 执行此操作,则命令为 Component.Replace 但参数为:
Component.Replace(componentName, newPath, False) with componentName being the name of the component in the assembly.
如果您从 VBA 宏中执行此操作,则需要设置要更改的组件的 ComponentOccurrance 对象。
Dim occ as ComponentOccurrance
Set occ = (the component occurrance object you want to replace)
//To replace
occ.Replace(newPath, False)"
第三个回应:
"
Public Sub CReplace()
Dim oOccurrence As ComponentOccurrence
Set oOccurrence = ThisApplication.ActiveDocument.ComponentDefinition.Occurrences.Item(1)
oOccurrence.Replace "<filename>", True
End Sub
"
【讨论】:
以上是关于components是啥意思的主要内容,如果未能解决你的问题,请参考以下文章
在 Material Design Components 的上下文中,“使用这个 SASS mixin”是啥意思?
Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException。原因是啥?