TopicTransformationCoreCreateSubsection Method
Create a topic subsection with a title
Namespace: Sandcastle.Core.PresentationStyle.TransformationAssembly: Sandcastle.Core (in Sandcastle.Core.dll) Version: 2024.12.21.0
public abstract (XElement Title, XElement Content) CreateSubsection(
bool localizedTitle,
string title
)
Public MustOverride Function CreateSubsection (
localizedTitle As Boolean,
title As String
) As (Title As XElement, Content As XElement)
public:
virtual ValueTuple<XElement^, XElement^> CreateSubsection(
bool localizedTitle,
String^ title
) abstract
abstract CreateSubsection :
localizedTitle : bool *
title : string -> ValueTuple<XElement, XElement>
- localizedTitle Boolean
- True if title is a localized include item, false if
it is literal title text.
- title String
- The item id if localizedTitle is true, or the literal title
text if it is false.
ValueTupleXElement,
XElementA tuple containing a reference to the title element if a title was created, null if not,
and a reference to the content element into which any additional content can be rendered or null
if it should be rendered into the current topic element. Both elements should be added to the topic
if created.