//
//
//
//
// $Revision$
//
using System;
namespace ICSharpCode.PythonBinding
{
///
/// Represents a Control's Text Property.
///
public class PythonControlTextProperty : PythonControlProperty
{
public PythonControlTextProperty()
{
}
///
/// Returns true if the Text property's value is an empty string.
///
public override bool IsDefaultValue(object propertyValue)
{
return (string)propertyValue == String.Empty;
}
}
}