FindPropertyObject Function [Runtime] /text/sbasic/shared/03103900.xhp Sun Microsystems, Inc.
FindPropertyObject function FindPropertyObject Function [Runtime] Enables objects to be addressed at run-time as a string parameter using the object name.
For instance, the command: MyObj.Prop1.Command = 5 corresponds to the following command block: Dim ObjVar as Object Dim ObjProp as Object ObjName As String = "MyObj" ObjVar = FindObject( ObjName As String ) PropName As String = "Prop1" ObjProp = FindPropertyObject( ObjVar, PropName As String ) ObjProp.Command = 5 To dynamically create Names at run-time, use: "TextEdit1" to TextEdit5" in a loop to create five names. See also: FindObject Syntax: FindPropertyObject( ObjVar, PropName As String ) Parameters: ObjVar: Object variable that you want to dynamically define at run-time. PropName: String that specifies the name of the property that you want to address at run-time.
llabora/cp-6.4 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/sc/uiconfig/scalc/ui/sortwarning.ui
AgeCommit message (Expand)Author
2018-05-19weld ScSortWarningDlgCaolán McNamara
2018-03-05Resolves: tdf#116188 set min version on all .ui files to 3.18Caolán McNamara
2017-07-21migrate to boost::gettextCaolán McNamara