IndexedColumn コンストラクター (Index, String, Boolean)

指定したインデックスで、指定した名前および順序を使用して IndexedColumn クラスの新しいインスタンスを初期化します。

名前空間:  Microsoft.SqlServer.Management.Smo
アセンブリ:  Microsoft.SqlServer.Smo (Microsoft.SqlServer.Smo.dll)

構文

'宣言
Public Sub New ( _
    index As Index, _
    name As String, _
    descending As Boolean _
)
'使用
Dim index As Index
Dim name As String
Dim descending As Boolean

Dim instance As New IndexedColumn(index, name, _
    descending)
public IndexedColumn(
    Index index,
    string name,
    bool descending
)
public:
IndexedColumn(
    Index^ index, 
    String^ name, 
    bool descending
)
new : 
        index:Index * 
        name:string * 
        descending:bool -> IndexedColumn
public function IndexedColumn(
    index : Index, 
    name : String, 
    descending : boolean
)

パラメーター

  • descending
    型: System. . :: . .Boolean
    インデックスを降順と昇順のどちらで並べ替えるかを示す Boolean 値です。
    True の場合、インデックスを降順に並べ替えます。
    False の場合、インデックスを昇順に並べ替えます。