Syntax Element Language FilterNamespace And Assembly Info Renderer Property
This is used to get or set the action delegate use to render the namespace and assembly information
Definition
Namespace: Sandcastle.Core.PresentationStyle.Transformation.Elements.Html
Assembly: Sandcastle.Core (in Sandcastle.Core.dll) Version: 2026.1.20.0
Assembly: Sandcastle.Core (in Sandcastle.Core.dll) Version: 2026.1.20.0
C#
public Action<TopicTransformationCore, XElement> NamespaceAndAssemblyInfoRenderer { get; set; }VB
Public Property NamespaceAndAssemblyInfoRenderer As Action(Of TopicTransformationCore, XElement)
Get
SetC++
public:
property Action<TopicTransformationCore^, XElement^>^ NamespaceAndAssemblyInfoRenderer {
Action<TopicTransformationCore^, XElement^>^ get ();
void set (Action<TopicTransformationCore^, XElement^>^ value);
}F#
member NamespaceAndAssemblyInfoRenderer : Action<TopicTransformationCore, XElement> with get, set