IisBlankValue()

Determines whether the attribute value is a blank value.

Syntax

boolean IisBlankValue(string attributeName);

Parameters

attributeName
The name of the attribute whose attribute value is tested for a blank value.

Return Values

Returns true if the attribute value is a blank value; otherwise, it returns false.

Exceptions

IInvalidAttributeNameException
Thrown when the attribute name is invalid.

Example

// See if attribute is blank
boolean isBlank = false;
String busAttribute = "AttributeName";
isBlank = exampleBusObj.IisBlankValue(busAttribute);
if (isBlank)
     ...

Copyright IBM Corp. 2004, 2005