MapGuide API Reference
 All Classes Functions Variables Enumerations Enumerator Friends
virtual MgByteReader* MgDrawingService::EnumerateSectionResources ( MgResourceIdentifier resource,
CREFSTRING  sectionName 
) [pure virtual]

Enumerates the resources of a DWF section (sometimes called a sheet).

.NET Syntax
virtual MgByteReader EnumerateSectionResources(MgResourceIdentifier resource, string sectionName);
Java Syntax
virtual MgByteReader EnumerateSectionResources(MgResourceIdentifier resource, String sectionName);
PHP Syntax
virtual MgByteReader EnumerateSectionResources(MgResourceIdentifier resource, string sectionName);
Parameters:
resource(MgResourceIdentifier) Resource identifier specifying the drawing source which has the DWF resource data.
sectionName(String/string) Name of the section. Section names can be retrieved via EnumerateSections or from the manifest.xml file via DescribeDrawing.
Returns:
Returns an MgByteReader object containing the list of resources in XML format using the DrawingSectionResourceList schema.
Example (PHP)
 // Assuming the drawing service has already been initialized
 $drawing_ID = new MgResourceIdentifier('Library://DrawingService/Floorplan.DrawingSource');
 $sectionName = 'com.autodesk.dwf.ePlot_9E2723744244DB8C44482263E654F764';
 $byteReader = $drawingService->EnumerateSectionResources($drawing_ID, $sectionName);
Exceptions:
MgDwfSectionNotFoundExceptionif the requested section does not exist in the DWF package.
MgInvalidDwfSectionExceptionif the 2d graphics resource for the DWF section cannot be found.
MgNullReferenceExceptionno data could be read from the DWF resource.
MgServiceNotAvailableExceptionif the underlying resource service cannot be obtained to access the drawing in the resource repository.
MgXmlParserExceptionif there are problems parsing the resource content specified by the resource identifier.
MgInvalidDwfPackageExceptionif the DWF specified by the resource identifier is not a DWF of version 6.0 or greater.
MgDwfExceptionif the DWF component encounters errors.
Note:
See MgResourceService for additional exceptions.