Skip to end of banner
Go to start of banner

admGetFieldConfigScheme

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Description

Retrieves a specific field configuration scheme.

Parameters

Return Type

JFieldConfgurationScheme

Example

JFieldConfigurationScheme [] allFCS = allFieldConfigSchemes();
JFieldConfigurationScheme oneFCS;
JFieldConfigurationScheme twoFCS;
if(size(allFCS) > 0) {
integer nId = allFCS[0].id;
string nName = allFCS[0].name;
oneFCS = fieldConfigScheme(nId);
twoFCS = fieldConfigScheme(nName);
}

See also

  • No labels