[This is preliminary documentation and is subject to change.]

Apply this attribute to Total Commander plugin class to make plugin generator ignore it

Namespace:  Tools.TotalCommanderT
Assembly:  Tools.TotalCommander (in Tools.TotalCommander.dll) Version: 1.5.2.0

Syntax

C#
[AttributeUsageAttribute(AttributeTargets.Class, Inherited = false)]
public class NotAPluginAttribute : Attribute
Visual Basic (Declaration)
<AttributeUsageAttribute(AttributeTargets.Class, Inherited := False)> _
Public Class NotAPluginAttribute _
	Inherits Attribute
Visual C++
[AttributeUsageAttribute(AttributeTargets::Class, Inherited = false)]
public ref class NotAPluginAttribute : public Attribute
J#
/** @attribute AttributeUsageAttribute(AttributeTargets.Class, Inherited = false) */
public class NotAPluginAttribute extends Attribute
JScript
public class NotAPluginAttribute extends Attribute

Remarks

This attribute may be usefull when you have non-abstract base class that you don't wan't plugin to be generated for

Inheritance Hierarchy

System..::.Object
  System..::.Attribute
    Tools.TotalCommanderT..::.NotAPluginAttribute

See Also