ZennoLab Assemblies Documentation
IZennoCustomCode Interface
Members  Example 
Defines methods that allow you to run execution of code in ZennoPoster
Object Model
IZennoCustomCode Interface
Syntax
public interface IZennoCustomCode 
Example
The following example demonstrates the implementation of IZennoCucstomCode
using System;
using ZennoLab.CommandCenter;
 
namespace ZennoCustomCode
{
    class Program : IZennoCustomCode
    {
        public int ExecuteCode(Instance instance, IZennoPosterProjectModel project)
        { 
            return 0;
        }
    }
}
<?php
use System;
use ZennoLab\CommandCenter;
 
[Export]
class Program implements IZennoCustomCode
{
    public function ExecuteCode($instance, $project)
    {
        return 0;
    }
}
?>
Requirements

Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows Seven

See Also

Reference

IZennoCustomCode Members
ZennoLab.CommandCenter Namespace
Instance Class
IZennoPosterProjectModel Interface

Send Feedback