Set boolean value in addin
Content
Hi guys,
I'm having trouble seting a Boolean value to a variable of the current context through an addin. I'm trying use the same structure I use to set other types of field, but no sucess. Anyone has an idea?
foreach (IGenericField genField in fields3)
{
if (genField.Name == "boolean_field")
{
genField.DataValue.Value = "true";
}
}
Thanks!
Laura
Tagged:
0