WriteAttributeValue(String,K2FieldPart) Method
See Also 
SourceCode.Workflow.Design Namespace > XmlPartWriter Class > WriteAttributeValue Method : WriteAttributeValue(String,K2FieldPart) Method



localName
The local name of the attribute.
value
The value of the attribute.

Glossary Item Box

Writes out the attribute with the specified local name and value.

Syntax

Visual Basic (Declaration) 
Public Overloads Sub WriteAttributeValue( _
   ByVal localName As String, _
   ByVal value As K2FieldPart _
) 
Visual Basic (Usage)Copy Code
Dim instance As XmlPartWriter
Dim localName As String
Dim value As K2FieldPart
 
instance.WriteAttributeValue(localName, value)
C# 
public void WriteAttributeValue( 
   string localName,
   K2FieldPart value
)
C++/CLI 
public:
void WriteAttributeValue( 
   String^ localName,
   K2FieldPart^ value
) 

Parameters

localName
The local name of the attribute.
value
The value of the attribute.

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also