Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 19.0.5.7
|
Leadtools.Forms.Auto Namespace > DiskMasterFormsCategory Class : AddChildCategory Method |
public virtual IMasterFormsCategory AddChildCategory( string name )
'Declaration Public Overridable Function AddChildCategory( _ ByVal name As String _ ) As IMasterFormsCategory
'Usage Dim instance As DiskMasterFormsCategory Dim name As String Dim value As IMasterFormsCategory value = instance.AddChildCategory(name)
public: virtual IMasterFormsCategory^ AddChildCategory( String^ name )
The source code for this interface implementation class is available at <Install Directory>\Examples\DotNet\CS\AutoMasterFormsRepository.
A directory will be created on the local disk inside this category Path with name name. This created category object will be added to ChildCategories.
Imports Leadtools Imports Leadtools.Codecs Imports Leadtools.Forms Imports Leadtools.Forms.Auto Imports Leadtools.Forms.Ocr Imports Leadtools.Forms.Recognition Imports Leadtools.Forms.Processing Imports Leadtools.Barcode Public Sub AutoFormsAddCategory(ByVal category As IMasterFormsCategory, ByVal name As String) category.AddChildCategory(name) End Sub
using Leadtools; using Leadtools.Codecs; using Leadtools.Forms; using Leadtools.Forms.Auto; using Leadtools.Forms.Ocr; using Leadtools.Forms.Recognition; using Leadtools.Forms.Processing; using Leadtools.Barcode; public void AutoFormsAddCategory(IMasterFormsCategory category, string name) { category.AddChildCategory(name); }