DocumentProperty.Type
DocumentProperty.Type property
Gets the data type of the property.
public PropertyType Type { get; }
Examples
// Called: AssertHelper.AreEqual(dpSrc.Type, dpDest.Type, info + ".Type");
public static void DocumentProperty_Property_Type(DocumentProperty dpSrc, DocumentProperty dpDest, string info)
{
if (AssertHelper.checkNull(dpSrc, dpDest, info))
{
return;
}
AssertHelper.AreEqual(dpSrc.Name, dpDest.Name, info + ".Name");
AssertHelper.AreEqual(dpSrc.Type, dpDest.Type, info + ".Type");
AssertHelper.AreEqual(dpSrc.Value, dpDest.Value, info + ".Value");
}
See Also
- enum PropertyType
- class DocumentProperty
- namespace Aspose.Cells.Properties
- assembly Aspose.Cells