Description
Gets or sets custom value associated with this primitive.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property Tag() As System.Object
|
[C#] |
---|
public System.Object Tag {get; set;}
|
[Managed C++] |
---|
public: __property VARIANT get_Tag(); public: __property void set_Tag(
VARIANT
);
|
[Unmanaged C++] |
---|
public: HRESULT get_Tag(
VARIANT * pRetVal
);
public: HRESULT put_Tag(
VARIANT Tag
);
|
[Java] |
---|
public AgVariant getTag();
public void setTag(
AgVariant
);
|
[Python - STK API] |
---|
@property
def Tag(self) -> typing.Any:
@Tag.setter
def Tag(self, Tag:typing.Any) -> None:
|
See Also