Please ensure Javascript is enabled for purposes of website accessibility
Powered by Zoomin Software. For more details please contactZoomin

AVEVA™ Work Tasks

SFControl​.cs

  • Last UpdatedMar 12, 2021
  • 1 minute read

using Custom.Forms.Controls;

using Skelta.Forms.Core.Controls;

using Skelta.Forms.Core.External;

namespace Skelta.Forms.ExternalControls

{

class SFControls : IExternalControls

{

#region IExternalControls Members

BaseControl IExternalControls.GetControl(string controlFullName)

{

switch (controlFullName)

{

case "Custom.Forms.Controls.PropertyLookup":

return new PropertyLookup();

default:

return null;

}

}

object[] IExternalControls.GetControls()

{

return new object[] { new PropertyLookup() };

}

#endregion

}

}

TitleResults for “How to create a CRG?”Also Available in