Aspose::Words::WarningInfoCollection::get_Count method

WarningInfoCollection::get_Count method

Gets the number of elements contained in the collection.

int32_t Aspose::Words::WarningInfoCollection::get_Count()

Examples

Shows how to get warnings about unsupported formats.

auto warnings = System::MakeObject<Aspose::Words::WarningInfoCollection>();
auto loadOptions = System::MakeObject<Aspose::Words::Loading::LoadOptions>();
loadOptions->set_WarningCallback(warnings);
auto doc = System::MakeObject<Aspose::Words::Document>(get_MyDir() + u"FB2 document.fb2", loadOptions);

ASSERT_EQ(u"The original file load format is FB2, which is not supported by Aspose.Words. The file is loaded as an XML document.", warnings->idx_get(0)->get_Description());
ASSERT_EQ(1, warnings->get_Count());

See Also