MFGS System Display User View
MFGSSystemDisplayUserView Public interface
Description
Describes methods and properties available on the static instance object MFGS.System.Display.UserView
Diagram
flowchart LR classDef interfaceStyle stroke-dasharray: 5 5; classDef abstractStyle stroke-width:4px subgraph VGWWCoreIEx VGWWCoreIEx.IExMFGSSystemDisplayUserView[[IExMFGSSystemDisplayUserView]] class VGWWCoreIEx.IExMFGSSystemDisplayUserView interfaceStyle; endMembers
Methods
Public methods
| Returns | Name |
|---|---|
string | GetContent(string alias)Gets the content of a text line on the user view. |
void | SetContent(string alias, string content, object color)Sets the content of a text line on the user view. |
void | SetHeader(string alias, string header, object color)Sets the header of a text line on the user view. |
Details
Summary
Describes methods and properties available on the static instance object MFGS.System.Display.UserView
Methods
SetHeader
public void SetHeader(string alias, string header, object color)Arguments
| Type | Name | Description |
|---|---|---|
string | alias | The alias of the text line. |
string | header | The header value. |
object | color | The color of the header. |
Summary
Sets the header of a text line on the user view.
Remarks
color can be a string, either of a known color (e.g. “Black”, “Red”, etc.) or an RGB hex value prefixed with a hash symbol (e.g. “#000000”, “#FF0000”, etc.). color can also be an VBA color constant (e.g. vbBlack, vbRed).
SetContent
public void SetContent(string alias, string content, object color)Arguments
| Type | Name | Description |
|---|---|---|
string | alias | The alias of the text line. |
string | content | The content value. |
object | color | The color of the header. |
Summary
Sets the content of a text line on the user view.
Remarks
color can be a string, either of a known color (e.g. “Black”, “Red”, etc.) or an RGB hex value prefixed with a hash symbol (e.g. “#000000”, “#FF0000”, etc.). color can also be an VBA color constant (e.g. vbBlack, vbRed).
GetContent
public string GetContent(string alias)Arguments
| Type | Name | Description |
|---|---|---|
string | alias | The alias of the text line. |
Summary
Gets the content of a text line on the user view.
Returns
The conent value
Generated with ModularDoc