Example #1
0
        public string GetObjectName(int id)
        {
            StoredCommands sc  = new StoredCommands();
            uint           key = sc.AppendSceneCommand_GetObjectName(id);

            ExecuteCommands(sc);
            vectorub name   = new vectorub();
            bool     bFound = sc.GetSceneCommandResult_GetObjectName(key, name);

            return((bFound) ? to_string(name) : null);
        }