Skip to content

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;
end

Members

Methods

Public methods

ReturnsName
stringGetContent(string alias)
Gets the content of a text line on the user view.
voidSetContent(string alias, string content, object color)
Sets the content of a text line on the user view.
voidSetHeader(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
TypeNameDescription
stringaliasThe alias of the text line.
stringheaderThe header value.
objectcolorThe 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
TypeNameDescription
stringaliasThe alias of the text line.
stringcontentThe content value.
objectcolorThe 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
TypeNameDescription
stringaliasThe alias of the text line.
Summary

Gets the content of a text line on the user view.

Returns

The conent value

Generated with ModularDoc