This method parses a string with attributes and returns a Properties object.

Namespace: iTextSharp.text.html
Assembly: ITextSharp (in ITextSharp.dll) Version: 4.1.6.0

Syntax

C#
public static Properties ParseAttributes(
	string str
)
Visual Basic
Public Shared Function ParseAttributes ( _
	str As String _
) As Properties
Visual C++
public:
static Properties^ ParseAttributes(
	String^ str
)

Parameters

str
Type: System..::..String
a string of this form: 'key1="value1"; key2="value2";... keyN="valueN" '

Return Value

a Properties object

See Also