CSLA.NET 5.4.2
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
Csla.Core.ISmartField Interface Reference

Defines members required for smart data types that understand the concept of being empty, and representing an empty value as an empty string. More...

Inheritance diagram for Csla.Core.ISmartField:
Csla.SmartDate

Properties

string Text [getset]
 Sets or gets the text representation of the value. More...
 
bool IsEmpty [get]
 Gets a value indicating whether the field's value is empty. More...
 

Detailed Description

Defines members required for smart data types that understand the concept of being empty, and representing an empty value as an empty string.

Definition at line 18 of file ISmartField.cs.

Property Documentation

◆ IsEmpty

bool Csla.Core.ISmartField.IsEmpty
get

Gets a value indicating whether the field's value is empty.

Definition at line 32 of file ISmartField.cs.

◆ Text

string Csla.Core.ISmartField.Text
getset

Sets or gets the text representation of the value.

An empty string indicates an empty value.

Definition at line 27 of file ISmartField.cs.