GetNumberingSchemesByType - AutogenField class - Current Value
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
I'm new in this forum....
I have a problem reading the AutogenField class, in particular I don't know how to read the current value of
FieldType Autogenerated.
I haven't found a member in this class.
For example in the ComplexField ther is ComplexVal member.
This is my code:
foreach (NumSchmField n in num)
{
FieldType fT = n.FieldTyp;
if (fT == FieldType.FixedText)
{
FixedTxtField f = (FixedTxtField)n;
MessageBox.Show(f.FixedTxtVal);
}
else if (fT == FieldType.FreeText)
{
FreeTxtField f = (FreeTxtField)n;
MessageBox.Show(f.DfltVal);
}
else if (fT == FieldType.Autogenerated)
{
AutogenField f = (AutogenField)n;
Can anyone help me?!?
...Sorry for my bad English....![]()
thanks
Michele
