MSHelpAttrCollection.Add Method (String, String)

HTML to MAML Converter

MSHelpAttrCollectionAdd Method (String, String)
Add a new item to the collection

Namespace: SandcastleBuilder.Utils
Assembly: ConvertHtmlToMaml (in ConvertHtmlToMaml.exe) Version: 1.0.0.2
Syntax
public MSHelpAttr Add(
	string name,
	string value
)
Public Function Add ( 
	name As String,
	value As String
) As MSHelpAttr
public:
MSHelpAttr^ Add(
	String^ name, 
	String^ value
)
member Add : 
        name : string * 
        value : string -> MSHelpAttr 

Parameters

name
Type: SystemString
The attribute name
value
Type: SystemString
The attribute value

Return Value

Type: MSHelpAttr
The MSHelpAttr added to the project. If If the item already exists in the collection, the existing item is returned.
Remarks
The MSHelpAttr constructor is internal so that we control creation of the items and can associate them with the project.
See Also