Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents
maxLevel4
minLevel2

X-Function Related

Pop up Popup menu within GetN dialog (ORG-8466)

...

When creating an X-Function in X-Function Builder, in the tree view, it is allowed to specify the Document Name, then the help button in the X-Function dialog will open this specified help file if clicked.


 

Ability to clear

...

documentation when

...

duplicating an

...

X-Function (ORG-7616)

In X-Function Builder, menu Tools: Clear Document is used to remove document related contents after duplicating an existing X-Function.

...

Code Block
#include <GetNBox.h>
void test_GetN()
{
	GETN_TREE(tr)	
	GETN_SLIDER(slider, "test", 0, "1|100|100")
	
	TreeNode trN = tr.slider;
	octree_set_auto_support(&trN, 1);
	
	GetNBox(tr);
}

The result dialog is:

 

...

Error message of X-Function shows in window (Script Window) where it runs (ORG-8836)

Code Builder

Improve TreeNode display in Code Builder Variable window (ORG-8689)

...

Code Block
int vectorbase::SetSubVector(vectorbase& vbSource, int c1 = 0, int nCount = -1);
int vector<string>::SetSubVector(vectorbase& vbSource, int c1 = 0, int nCount = -1);

 

Expose Column method GetAdditionalInfo to OC for getting additional text (ORG-9101)

Code Block
void test_GetAdditionalInfo()
{
	Worksheet wks = Project.ActiveLayer();
	Column col(wks, 0);
	string strTextInfo;
	col.GetAdditionalInfo(strTextInfo);
	out_str(strTextInfo);
}

Improve speed of OC compiler (ORG-8697)

 

 

LabTalk

LabTalk callable OC function to force recalculate operation executed (ORG-7877)

...

New line is \r\n by default, n = use \n as new line, r = use \r as new line. 

 

...

 

...

 

Expose Column method GetAdditionalInfo to OC for getting additional text (ORG-9101)

...

 

Better error checking in LabTalk function (ORG-9155)

...