VDataSectionSetValue Method (String, VDataValue, ValueMatchType) |
Sets a complex value (VDataValue) within a VDataSection
Namespace: ARPDev.DAVLIBAssembly: ARPDev.DAVLIB (in ARPDev.DAVLIB.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic void SetValue(
string sLabelQualifier,
VDataValue vdValue,
ValueMatchType vMatchType = ValueMatchType.LabelOnly
)
Public Sub SetValue (
sLabelQualifier As String,
vdValue As VDataValue,
Optional vMatchType As ValueMatchType = ValueMatchType.LabelOnly
)
public:
void SetValue(
String^ sLabelQualifier,
VDataValue^ vdValue,
ValueMatchType vMatchType = ValueMatchType::LabelOnly
)
member SetValue :
sLabelQualifier : string *
vdValue : VDataValue *
?vMatchType : ValueMatchType
(* Defaults:
let _vMatchType = defaultArg vMatchType ValueMatchType.LabelOnly
*)
-> unit
Parameters
- sLabelQualifier
- Type: SystemString
Period delimited string representing the relative path to the label within the item. Example: VCALENDAR.VEVENT.SUMMARY denotes the value named summary within the VEVENT section of a VCALENDAR - vdValue
- Type: ARPDev.DAVLIBVDataValue
The VDataValue to set within VDataSection - vMatchType (Optional)
- Type: ARPDev.DAVLIBValueMatchType
Determines whether or not to match the label and attributes when replacing the VDataValue
Remarks
See Also