| Development licensing | Deployment licensing |
|---|---|
| ArcView | ArcView |
| ArcEditor | ArcEditor |
| ArcInfo | ArcInfo |
| Engine Developer Kit | Engine Runtime |
|
Constant
|
Value
|
Description
|
|
esriPSORasterize
|
0
|
Rasterize layers with picture symbols (the default).
|
|
esriPSORasterizeIfRasterData
|
1
|
Rasterize layers with picture symbols only if the symbols have raster data.
|
|
esriPSOVectorize
|
2
|
Vectorize layers with picture symbols.
|
if (docExport is IExportVector)
{
// Assign the IExportVectorOptionsEx property to control the rendering of picture marker symbols.
docExportVectorOptionsEx = docExport as IExportVectorOptionsEx;
docExportVectorOptionsEx.ExportPictureSymbolOptions = esriPictureSymbolOptions.esriPSOVectorize;
}
If TypeOf docExport Is IExportVector Then
' Assign the IExportVectorOptionsEx property to control the rendering of picture marker symbols.
docExportVectorOptionsEx = docExport
docExportVectorOptionsEx.ExportPictureSymbolOptions = esriPictureSymbolOptions.esriPSOVectorize
End If