Click or drag to resize

DXFReaderNETControlDistributionCode Property

Gets or sets the distribution code required for licensing and deployment of the DXFReaderNET control.

Namespace:  DXFReaderNET
Assembly:  DXFReaderNET (in DXFReaderNET.dll) Version: 20.12.2
Syntax
public string DistributionCode { get; set; }

Property Value

Type: String
A string containing the unique distribution code provided during component registration.
Remarks
The distribution code is a license key that must be set to enable redistribution of the DXFReaderNET.dll assembly with your compiled application. This code is provided when you register the component.

Important: The distribution code must be set before using any functionality of the control. Without a valid distribution code, the component may operate in evaluation or limited mode.

This property should be set early in your application's initialization, typically in the form constructor or during component initialization.

Examples
// Set the distribution code during initialization
dxfControl.DistributionCode = "YOUR-DISTRIBUTION-CODE-HERE";
See Also