GraphMetadata Constructors

Definition

Overloads

GraphMetadata(GraphMetadataOptions)

Construct a new GraphPropertyMetadata object.

GraphMetadata(Object, GraphMetadataOptions)

Construct a new GraphPropertyMetadata object.

GraphMetadata(String, String, String, GraphMetadataOptions)

Construct a new GraphPropertyMetadata object.

GraphMetadata(GraphMetadataOptions)

Construct a new GraphPropertyMetadata object.

public:
 GraphMetadata(Microsoft::VisualStudio::GraphModel::GraphMetadataOptions options);
public GraphMetadata (Microsoft.VisualStudio.GraphModel.GraphMetadataOptions options);
new Microsoft.VisualStudio.GraphModel.GraphMetadata : Microsoft.VisualStudio.GraphModel.GraphMetadataOptions -> Microsoft.VisualStudio.GraphModel.GraphMetadata
Public Sub New (options As GraphMetadataOptions)

Parameters

options
GraphMetadataOptions

Flags for this GraphProperty

Applies to

GraphMetadata(Object, GraphMetadataOptions)

Construct a new GraphPropertyMetadata object.

public:
 GraphMetadata(System::Object ^ defaultValue, Microsoft::VisualStudio::GraphModel::GraphMetadataOptions options);
public GraphMetadata (object defaultValue, Microsoft.VisualStudio.GraphModel.GraphMetadataOptions options);
new Microsoft.VisualStudio.GraphModel.GraphMetadata : obj * Microsoft.VisualStudio.GraphModel.GraphMetadataOptions -> Microsoft.VisualStudio.GraphModel.GraphMetadata
Public Sub New (defaultValue As Object, options As GraphMetadataOptions)

Parameters

defaultValue
Object

The default value for this property

options
GraphMetadataOptions

Flags for this GraphProperty

Applies to

GraphMetadata(String, String, String, GraphMetadataOptions)

Construct a new GraphPropertyMetadata object.

public:
 GraphMetadata(System::String ^ label, System::String ^ description, System::String ^ group, Microsoft::VisualStudio::GraphModel::GraphMetadataOptions options);
public GraphMetadata (string label, string description, string group, Microsoft.VisualStudio.GraphModel.GraphMetadataOptions options);
new Microsoft.VisualStudio.GraphModel.GraphMetadata : string * string * string * Microsoft.VisualStudio.GraphModel.GraphMetadataOptions -> Microsoft.VisualStudio.GraphModel.GraphMetadata
Public Sub New (label As String, description As String, group As String, options As GraphMetadataOptions)

Parameters

label
String

Localized label

description
String

Localized description

group
String

Localized category for grouping in a property grid window

options
GraphMetadataOptions

Flags for this GraphProperty

Applies to