Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Retrieves the ID of the data source.
Syntax
public int id()
Run On
Client
Return Value
Type: int
The ID of the data source.
Examples
The following example converts form data sources to their data source IDs.
static client DataSourceNumber fds2fdsNo(FormDataSource _fds)
{
Form form = _fds.formRun().form();
int i;
for (i=1;i<=form.dataSourceCount();i++)
{
if (_fds.formRun().dataSource(i).id() == _fds.id())
{
return i;
}
}
return 0;
}