Skip to content

CXNetworkWriteXNetFiltered

function

Back to Helios Network Native C API

Kind
function
Source
src/native/include/helios/CXNetworkXNet.h:54

Description

Serializes an XNET file while allowing or ignoring selected attributes. Attribute filters are split by node, edge, and graph/network scope. @param network Network to serialize. @param path Output path for the .xnet file. @return CXTrue on success, CXFalse on failure.

Signature

CX_EXTERN CXBool CXNetworkWriteXNetFiltered(struct CXNetwork *network, const char *path, const char **nodeAllow, size_t nodeAllowCount, const char **nodeIgnore, size_t nodeIgnoreCount, const char **edgeAllow, size_t edgeAllowCount, const char **edgeIgnore, size_t edgeIgnoreCount, const char **graphAllow, size_t graphAllowCount, const char **graphIgnore, size_t graphIgnoreCount);