2.33.5 GetObject
Contents
Description
Syntax
C++: OriginObject GetObject(int index)
Parameters
- index
- from 0 to count(of results) -1
Return
return OriginObject whose any attribute values are found by keyword
Remark
Examples
Python
import OriginExt as O app = O.Application(); app.Visible = app.MAINWND_SHOW pageName = app.CreatePage(app.OPT_WORKSHEET) finder = app.GetFinder() finder.Find("1") print(finder.GetObject(0).Name)