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 ZennoLab\CommandCenter\IZennoCustomCode
{
    public function ExecuteCode($instance, $project)
    {
        return 0;
    }
}
?>
Requirements

Target Platforms: Desktop: Windows XP SP3 and older. Server: Windows Server 2003 and older.

See Also

Reference

IZennoCustomCode Members
ZennoLab.CommandCenter Namespace
Instance Class
IZennoPosterProjectModel Interface
IZennoCustomEndCode Interface

Send Feedback