RadioTableItem.LessThan Operator (RadioTableItem, RadioTableItem)
Determines whether the first specified radio table item is less than the second specified radio table item.
Namespace: Microsoft.WindowsServerSolutions.Controls
Assembly: AdminCommon (in AdminCommon.dll)
Syntax
public static bool operator <(
RadioTableItem r1,
RadioTableItem r2
)
public:
static bool operator <(
RadioTableItem^ r1,
RadioTableItem^ r2
)
Public Shared Operator < (
r1 As RadioTableItem,
r2 As RadioTableItem
) As Boolean
Parameters
r1
Type: Microsoft.WindowsServerSolutions.Controls.RadioTableItemThe first radio table item.
r2
Type: Microsoft.WindowsServerSolutions.Controls.RadioTableItemThe second radio table item.
Return Value
Type: System.Boolean
A Boolean: true if r1 is less than r2; otherwise, false.
See Also
RadioTableItem Class
Microsoft.WindowsServerSolutions.Controls Namespace
Return to top