GmlReaderInputGraph Method (IGraph, String, Int32, String, String, String, String) |
Load the GML file into the Graph.
Namespace:
Frontenac.Blueprints.Util.IO.GML
Assembly:
VelocityGraph (in VelocityGraph.dll) Version: 10.1.0.0 (10.1)
Syntaxpublic static void InputGraph(
IGraph inputGraph,
string filename,
int bufferSize,
string defaultEdgeLabel,
string vertexIdKey,
string edgeIdKey,
string edgeLabelKey
)
Public Shared Sub InputGraph (
inputGraph As IGraph,
filename As String,
bufferSize As Integer,
defaultEdgeLabel As String,
vertexIdKey As String,
edgeIdKey As String,
edgeLabelKey As String
)
public:
static void InputGraph(
IGraph^ inputGraph,
String^ filename,
int bufferSize,
String^ defaultEdgeLabel,
String^ vertexIdKey,
String^ edgeIdKey,
String^ edgeLabelKey
)
static member InputGraph :
inputGraph : IGraph *
filename : string *
bufferSize : int *
defaultEdgeLabel : string *
vertexIdKey : string *
edgeIdKey : string *
edgeLabelKey : string -> unit
Parameters
- inputGraph
- Type: Frontenac.BlueprintsIGraph
to receive the data - filename
- Type: SystemString
GML file - bufferSize
- Type: SystemInt32
[Missing <param name="bufferSize"/> documentation for "M:Frontenac.Blueprints.Util.IO.GML.GmlReader.InputGraph(Frontenac.Blueprints.IGraph,System.String,System.Int32,System.String,System.String,System.String,System.String)"]
- defaultEdgeLabel
- Type: SystemString
default edge label to be used if not defined in the data - vertexIdKey
- Type: SystemString
if the id of a vertex is a <data/> property, fetch it from the data property. - edgeIdKey
- Type: SystemString
if the id of an edge is a <data/> property, fetch it from the data property. - edgeLabelKey
- Type: SystemString
if the label of an edge is a <data/> property, fetch it from the data property.
See Also