←Select platform

SvgEnumerateElementsCallback Delegate

Summary

Callback to receive the SVG elements (nodes).

Syntax

C#
VB
Java
Objective-C
C++
public delegate bool SvgEnumerateElementsCallback( 
   SvgDocument document, 
   SvgNodeHandle node, 
   object userData 
) 
Public Delegate Function SvgEnumerateElementsCallback( _ 
   ByVal document As Leadtools.Svg.SvgDocument, _ 
   ByVal node As Leadtools.Svg.SvgNodeHandle, _ 
   ByVal userData As Object _ 
) As Boolean 
(BOOL (^)(LTSvgDocument *document, LTSvgNodeHandle *node, id _Nullable userData) 
boolean SvgEnumerateElementsCallback.onEnumerateElement(SvgDocument doc, SvgNodeHandle node, Object userData) 
public delegate bool SvgEnumerateElementsCallback(  
   Leadtools.Svg.SvgDocument^ document, 
   Leadtools.Svg.SvgNodeHandle^ node, 
   Object^ userData 
) 

Parameters

document
The source SvgDocument.

node
Node handle.

userData
Optional user data. This is the same parameter passed to EnumerateElements.

Return Value

true to continue to the next element (node) if any, false to stop enumerating.

Example

For an example, refer to SvgDocument.EnumerateElements.

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Svg Assembly