AsposeVisualStudioPluginCells.Core.AsposeComponent.set_name C# (CSharp) Method

set_name() public method

public set_name ( string _name ) : void
_name string
return void
        public void set_name(string _name)
        {
            this._name = _name;
        }

Usage Example

 public AsposeComponents()
 {
     list.Clear();
     
     AsposeComponent asposeCells = new AsposeComponent();
     asposeCells.set_downloadUrl("");
     asposeCells.set_downloadFileName("aspose.Cells.zip");
     asposeCells.set_name(Constants.ASPOSE_COMPONENT);
     asposeCells.set_remoteExamplesRepository("https://github.com/asposeCells/Aspose_Cells_NET.git");
     list.Add(Constants.ASPOSE_COMPONENT, asposeCells);
 }
All Usage Examples Of AsposeVisualStudioPluginCells.Core.AsposeComponent::set_name