StencilCreationScriptGetInfoText Method

Info text to show in GUI.

Definition

Namespace: PCBI_Stencil_Editor.StencilCreationRules
Assembly: PCBI_Stencil_Editor (in PCBI_Stencil_Editor.dll) Version: 17.0.0.0 (17.0.0.0)
C#
string GetInfoText(
	bool longDescription
)

Parameters

longDescription  Boolean
In the info area the long description is shown together with the image.

Return Value

String
Description string.

Example

C#
public string GetInfoText(bool longVersion)
  {
      if (longVersion)
          return "Create one surface foreach copper pad. This is not finish implemented and do not use all parameters and mask check!"; 

      return "Create one surface foreach copper pad.";
  }

See Also