Esempio n. 1
0
        private string GetFunctionDomain(int index)
        {
            string domain = string.Empty;
            var    items  = gtFunctionCheckedListBoxControl.Items;

            string[] templateUFUNCTIONMacros = new string[]
            {
                "BlueprintCallable",
                "BlueprintPure",
                "BlueprintImplementableEvent",
                "BlueprintNativeEvent",
            };
            if (GTCS_GTL.ConfirmOutOfRangeVoid(templateUFUNCTIONMacros, index) == false)
            {
                domain = templateUFUNCTIONMacros[index];
            }
            return(domain);
        }
Esempio n. 2
0
        private string GetPropertyDomain(int index)
        {
            string domain = string.Empty;
            var    items  = gtPropertyCheckedListBoxControl.Items;

            string[] templateUPROPERTYMacros = new string[]
            {
                // 編集権限(ReadWrite)
                "EditAnywhere",
                "EditInstanceOnly",
                "EditDefaultsOnly",
                // 閲覧権限(ReadOnly)
                "VisibleAnywhere",
                "VisibleInstanceOnly",
                "VisibleDefaultsOnly",
            };
            if (GTCS_GTL.ConfirmOutOfRangeVoid(templateUPROPERTYMacros, index) == false)
            {
                domain = templateUPROPERTYMacros[index];
            }
            return(domain);
        }