AGS.Editor.GUIController.CustomPropertiesEditor C# (CSharp) Метод

CustomPropertiesEditor() публичный Метод

public CustomPropertiesEditor ( AGS.Types.CustomProperties properties, CustomPropertyAppliesTo showPropertiesOfType ) : void
properties AGS.Types.CustomProperties
showPropertiesOfType CustomPropertyAppliesTo
Результат void
        public void CustomPropertiesEditor(CustomProperties properties, CustomPropertyAppliesTo showPropertiesOfType)
        {
            AGS.Editor.CustomPropertiesEditor editor = new CustomPropertiesEditor(_agsEditor.CurrentGame.PropertySchema, properties, showPropertiesOfType);
            editor.ShowDialog();
            editor.Dispose();
        }
GUIController