Gets or sets the lowest value allowed in the range.

Namespace: Autodesk.Civil.DatabaseServices
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.4.2516.0

Syntax

C#
public int LowerBoundValue { get; set; }
Visual Basic
Public Property LowerBoundValue As Integer
	Get
	Set
Visual C++
public:
property int LowerBoundValue {
	int get ();
	void set (int value);
}

Remarks

If LowerBoundInclusive is true, this value is included in the range, otherwise it is not.

Examples

CopyC#
1!ERROR: See log file!
CopyVB.NET
1!ERROR: See log file!

Exceptions

ExceptionCondition
System..::..ArgumentException Thrown when:
  • LowerBoundValue is greater than the DefaultValue when UseDefaultValue is true.
  • LowerBoundValue is greater than the UpperBoundValue when UseDefaultValue is false.

See Also