About the Implementing a schematic layout algorithm and its layout property page Sample
[C#]
ITranslateTree.cs
using System;
using System.Collections.Generic;
using System.Text;
namespace ApplicativeAlgorithmsCS
{
public interface ITranslateTree
{
double TranslationFactorX
{
get;
set;
}
double TranslationFactorY
{
get;
set;
}
}
}
[Visual Basic .NET]
ITranslateTree.vb
Option Explicit On
Public Interface ITranslateTree
Property TranslationFactorX() As Double
Property TranslationFactorY() As Double
End Interface