コード例 #1
0
 public static void GetDataType(DataType obj, Zetbox.API.MethodReturnEventArgs <System.Type> e)
 {
     e.Result = Type.GetType(obj.GetDataTypeString() + ", " + Zetbox.API.Helper.InterfaceAssembly, true);
 }
コード例 #2
0
        public static void GetParameterType(Zetbox.App.Base.CompoundObjectParameter obj, Zetbox.API.MethodReturnEventArgs <System.Type> e)
        {
            var cls = obj.CompoundObject;

            e.Result = Type.GetType(cls.Module.Namespace + "." + cls.Name + ", " + Zetbox.API.Helper.InterfaceAssembly, true);
            BaseParameterActions.DecorateParameterType(obj, e, false);
        }
コード例 #3
0
 public static void GetPropertyType(Zetbox.App.Base.Property obj, Zetbox.API.MethodReturnEventArgs <System.Type> e)
 {
     throw new NotImplementedException();
 }