WorkflowDesignerLoader.FileName Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
When overridden in a derived class, gets the file name of the designer to load.
public:
abstract property System::String ^ FileName { System::String ^ get(); };
public abstract string FileName { get; }
member this.FileName : string
Public MustOverride ReadOnly Property FileName As String
Property Value
A string that contains the file name of the designer to load.
Examples
The following example shows how to override the FileName property to return the path of the currently loaded workflow file used by the WorkflowDesignerLoader.
public override string FileName
{
// return path of workflow file
get
{
return this.xomlFile;
}
}
Public Overrides ReadOnly Property FileName() As String
' return path of workflow file
Get
Return Me.XomlFile
End Get
End Property
Applies to
Samarbeid med oss på GitHub
Du finner kilden for dette innholdet på GitHub. Der du også kan opprette og se gjennom problemer og pull-forespørsler. Hvis du vil ha mer informasjon, kan du se vår bidragsyterveiledning.