Difference between revisions of "CAEngine::CreateObject/zh"

(Created page with "= 返回值 =")
(Created page with " CAObject")
Line 35: Line 35:
 
= 返回值 =
 
= 返回值 =
  
[[CAObject]]
+
[[CAObject/zh | CAObject]]
  
 
= Example Usage =
 
= Example Usage =

Revision as of 09:48, 18 October 2015

ADE User Guide > ADE Server Class Reference > CAEngine

Other languages:
English • ‎中文

CreateObject(objName,objClass)

在CurrentModule当中建立一个标识符为«objName»,类型为«objClass»的新Analytica对象,并作为一个CAObject返回。

参 数

objName: string - the new object's identifier

objClass
string, one of:
  • "Alias"
  • "Attribute"
  • "Button"
  • "Chance"
  • "Constant"
  • "Decision"
  • "Determ"
  • "Form"
  • "Formnode"
  • "Function"
  • "GraphStyleTemplate"
  • "Index"
  • "Library"
  • "LinkLibrary"
  • "LinkModule"
  • "Model"
  • "Module"
  • "Objective"
  • "Picture"
  • "Text"
  • "Variable"

返回值

CAObject

Example Usage

// C#
CAObject obj = ade.CreateObject ("NewVar","Chance");


API errors

  • 40 – “Object could not be created”
  • 41 – “Invalid name for object”
  • 42 – “Object name already in use”
  • 48 – “Invalid object class”
Comments


You are not allowed to post comments.