RangeType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The RangeType enum specifies whether the boundary values specified with RangeValues are placed in the LEFT or RIGHT side of the interval. None corresponds to no boundary condition. Table with no partition is suitable example.
[System.ComponentModel.TypeConverter(typeof(Microsoft.SqlServer.Management.Smo.RangeTypeConverter))]
public enum RangeType
[<System.ComponentModel.TypeConverter(typeof(Microsoft.SqlServer.Management.Smo.RangeTypeConverter))>]
type RangeType =
Public Enum RangeType
- Inheritance
-
RangeType
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | -1 | RangeType is not set. |
Left | 0 | Boundary values belong to left side of the interval. |
Right | 1 | Boundary values belong to right side of the interval. |