Public Enum PathOption AbsolutePath = 3 NoPath = 1 PathAndFile = 4 RelativePath = 2 End Enum
public enum PathOption { AbsolutePath = 3, NoPath = 1, PathAndFile = 4, RelativePath = 2 }
Members |
Description |
AbsolutePath = 3 |
Store absolute path |
NoPath = 1 |
Don't store path |
PathAndFile = 4 |
Don't store path |
RelativePath = 2 |
Store relative path |
Comments? |