Determines whether the attribute value is "ignore".
Syntax
boolean IisIgnoreValue(string attributeName);
Parameters
Return Values
Returns true if the attribute value is "ignore"; otherwise, it returns false.
Exceptions
Example
// Call the attribute ignore method boolean isIgnore = false; String busAttribute = "AttributeName"; isIgnore = exampleBusObj.IisIgnoreValue(busAttribute); if (isIgnore) ...