Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
この接続のバージョン文字列を返します。
Public Function GetVersion() As String
public string GetVersion()
スクリプトバージョン名
プロパティは、ml_property テーブルに格納されます。詳細については、ml_add_property システムプロシージャを参照してください。
次の例は、スクリプトバージョンを取得して、決定を行うために使用する方法を示します。
public void MyEvent() { // ... string version = _cc.GetVersion(); switch( version ) { case "My Version 1": // ... break; case "My Version 2": // ... break; } }