ExpansionFunction.Arguments 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.
Gets or sets the arguments to the function.
public:
property cli::array <System::String ^> ^ Arguments { cli::array <System::String ^> ^ get(); void set(cli::array <System::String ^> ^ value); };
public:
property Platform::Array <Platform::String ^> ^ Arguments { Platform::Array <Platform::String ^> ^ get(); void set(Platform::Array <Platform::String ^> ^ value); };
public string[] Arguments { get; set; }
member this.Arguments : string[] with get, set
Public Property Arguments As String()
Property Value
An array of arguments of the expansion function.
Remarks
Each argument represents another declaration in the code snippet file and can be either a literal or an object. The value for each argument is obtained in the GetFieldValue method that is in turned called by the GetArgument method. The GetArgument method can be called from your implementation of the GetCurrentValue method.