IVbaModule
public interface IVbaModule
Represents module that is contained in VBA project.
Methods
| Method | Description |
|---|---|
| getName() | Name of the module. |
| getSourceCode() | Source code of the module. |
| setSourceCode(String value) | Source code of the module. |
getName()
public abstract String getName()
Name of the module. Read-only String.
Returns: java.lang.String
getSourceCode()
public abstract String getSourceCode()
Source code of the module. Read/write String.
Returns: java.lang.String
setSourceCode(String value)
public abstract void setSourceCode(String value)
Source code of the module. Read/write String.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| value | java.lang.String |